summaryrefslogtreecommitdiffstats
path: root/pkgs/simple/otherutils.nix
blob: 3cc0caa99df932b8990614f11b3bc4e973974ea2 (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.0";
  src = pkgs.fetchgit {
    url = "https://cgit.krebsco.de/otherutils";
    rev = "refs/tags/${version}";
    hash = "sha256-PLOxq/zDa4QFc4+42t22hZ4QbkLxM9H7Lkbys+4IWgg=";
  };
  env = {
    PREFIX = placeholder "out";
  };
}