Created
May 11, 2017 10:04
-
-
Save FRidh/2cd359480d8b6402eb2a9d930f19a70f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{pkgs ? (import <nixpkgs> {})}: | |
pkgs.stdenv.mkDerivation { | |
name = "fetchtarballtest"; | |
src = pkgs.fetchurl { | |
url = https://github.com/NixOS/nixpkgs/archive/9c90ff7e7df9ceadc7335bb43cc67ba92e171d53.tar.gz; | |
sha256 = "0f8ynrrj24i4g8flp978ccsb2hlwk1n321z8xwj0wakj0ak4c8i9"; | |
}; | |
installPhase = '' | |
mkdir -p out | |
''; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment