2 files changed, 14 insertions(+), 7 deletions(-)

M default.nix
M release.nix
M default.nix +9 -5
@@ 2,13 2,14 @@ 
 , buildRustPackage ? (import (pkgs.fetchFromBitbucket {
     owner = "dermetfan";
     repo = "nixpkgs-extras";
-    rev = "89ff12eeae4d9f38a3231c2cc1986f7157d374d8";
-    sha256 = "15n3919hfs76lqn5gdcfa8plba1di777s23x6yv5a03cjkbnswcw";
+    rev = "62a7153cd94fbd23e9f0693ee3ea8072053b388c";
+    sha256 = "1sjym83jcwvsnrzf0sc291dywcihgc83fd23c66pbsdflgh85q4d";
   })).buildRustPackage {
     inherit pkgs;
-  } }:
+  }
+, ... } @ args:
 
-buildRustPackage {
+buildRustPackage ({
   name = "cursedlife";
 
   src = ./.;

          
@@ 20,4 21,7 @@ buildRustPackage {
   doCheck = true;
 
   meta.maintainers = [ "serverkorken@gmail.com" ];
-}
+} // builtins.removeAttrs args [
+  "pkgs"
+  "buildRustPackage"
+])

          
M release.nix +5 -2
@@ 1,7 1,10 @@ 
-{ nixpkgs, system }:
+{ nixpkgs, system
+, doHydra ? true }:
 
 let
   pkgs = import nixpkgs { inherit system; };
 in {
-  build = import ./default.nix { inherit pkgs; };
+  build = import ./default.nix {
+    inherit pkgs doHydra;
+  };
 }