19 lines
453 B
Nix
19 lines
453 B
Nix
{
|
|
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";
|
|
};
|
|
|
|
};
|
|
}
|