summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/skarnet/default.nix
blob: 5490fcabef966a8de0594222c0dadac1e9c3f87d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv }:

let

  version = "2014-11-28";

in stdenv.mkDerivation {

  name = "skarnet-conf-compile-${version}";

  phases = [ "fixupPhase" ];

  setupHook = ./setup-hook.sh;

  meta = {
    homepage = http://www.skarnet.org/software/conf-compile.html;
    description = "Support for configuring skarnet.org packages for nix builds";
    platforms = stdenv.lib.platforms.all;
  };

}