Skip to content

Commit

Permalink
Add a minimal default.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
benley committed Mar 16, 2017
1 parent 9695a12 commit 783ca12
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/result
11 changes: 11 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> {},
lib ? pkgs.lib }:

{
icons = pkgs.stdenv.mkDerivation {
name = "nix-icons";
srcs = lib.cleanSource ./.;
buildInputs = [ pkgs.imagemagick ];
makeFlags = [ "DESTDIR=$(out)" "prefix=" ];
};
}

0 comments on commit 783ca12

Please sign in to comment.