]> git.immae.eu Git - perso/Immae/Config/Nix.git/commitdiff
Use tagged nixpkgs instead of last unstable version to control upgrades
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Mon, 24 Dec 2018 13:22:23 +0000 (14:22 +0100)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Thu, 27 Dec 2018 10:26:19 +0000 (11:26 +0100)
default.nix

index 2f10ee83c089eb9c5c2b4d582dd5f951a646979f..3772d44afd6e8c64549307f42e226d24fb2bd1f9 100644 (file)
@@ -1,5 +1,12 @@
-with import <nixpkgs> {};
+with import (builtins.fetchTarball {
+  # FIXME: upgrade to nixpkgs 19 when stable and stick to stable
+  # versions
+  name = "nixos-unstable-2018-12-08";
+  url = https://github.com/nixos/nixpkgs/archive/61c3169a0e17d789c566d5b241bfe309ce4a6275.tar.gz;
+  sha256 = "0qbycg7wkb71v20rchlkafrjfpbk2fnlvvbh3ai9pyfisci5wxvq";
+}) {};
 let
+  stable_nixpkgs = import <nixpkgs> {};
   mypkgs = {};
   postHook =  ''
     header() {
@@ -101,7 +108,7 @@ let
     };
   };
 
-  buildPerlPackage = callPackage <nixpkgs/pkgs/development/perl-modules/generic> { };
+  buildPerlPackage = perlPackages.buildPerlPackage;
   mypkgs.note = buildPerlPackage rec {
     name = "note-1.3.26";
     src = fetchurl {