blob: 5c946d2203b054b349daa1742580198b1a612d3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ pkgs, stdenv }:
stdenv.mkDerivation rec {
pname = "otherutils";
version = "1.1.0";
src = pkgs.fetchgit {
url = "https://cgit.krebsco.de/otherutils";
rev = "refs/tags/${version}";
hash = "sha256-eiMTIXTEsq+DGlOw+fcU2cgRkuPWTy5lm/L5heuhDxM=";
};
env = {
PREFIX = placeholder "out";
};
}
|