summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/programs-db
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2017-08-16 12:03:32 +0200
committermakefu <github@syntax-fehler.de>2017-08-16 12:31:46 +0200
commit06a65dd592a62663b15547796b6f11fddb205b31 (patch)
tree21f2d720776a37ca3875937786e217cfa7bebfe3 /makefu/5pkgs/programs-db
parent8f14ff2f54167c8505de82f65d640a1bb0018f17 (diff)
ma 5pkgs: cleanup
Diffstat (limited to 'makefu/5pkgs/programs-db')
-rw-r--r--makefu/5pkgs/programs-db/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/makefu/5pkgs/programs-db/default.nix b/makefu/5pkgs/programs-db/default.nix
new file mode 100644
index 00000000..f40b1b96
--- /dev/null
+++ b/makefu/5pkgs/programs-db/default.nix
@@ -0,0 +1,12 @@
+{ stdenv }:
+
+stdenv.mkDerivation rec {
+ name = "programs-db";
+ src = builtins.fetchTarball https://nixos.org/channels/nixos-unstable/nixexprs.tar.xz ;
+
+ phases = [ "unpackPhase" "installPhase" ];
+ installPhase = ''
+ cp programs.sqlite $out
+ '';
+
+}