Skip to content

Instantly share code, notes, and snippets.

@FRidh
Created May 11, 2017 10:04
Show Gist options
  • Save FRidh/2cd359480d8b6402eb2a9d930f19a70f to your computer and use it in GitHub Desktop.
Save FRidh/2cd359480d8b6402eb2a9d930f19a70f to your computer and use it in GitHub Desktop.
{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