cosmic-icon-theme/flake.nix
2023-08-30 11:12:51 -04:00

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";
};
};
}