cosmic-icon-theme/flake.nix

20 lines
453 B
Nix
Raw Normal View History

2023-08-29 10:12:18 -04:00
{
description = "Icons for the COSMIC desktop environment";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
};
outputs = { self, nixpkgs }: {
packages.x86_64-linux.default =
with import nixpkgs { system = "x86_64-linux"; };
stdenv.mkDerivation {
nativeBuildInputs = [ just ];
name = "cosmic-icons";
src = self;
installPhase = "just prefix=$out install";
};
};
}