about summary refs log tree commit diff
path: root/pkgs/build-support/builder-defs/template-bdp-uud.nix
blob: 46d2da40a70300d3a5d6b7adb4b7ee74ca480fa9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
a :  
let 
  fetchurl = a.fetchurl;
  s = import ./src-info-for-default.nix;

  version = a.lib.attrByPath ["version"] s.version a; 
  buildInputs = with a; [
    
  ];
in
rec {
  src = fetchurl {
    url = s.url;
    sha256 = s.hash;
  };

  inherit buildInputs;
  configureFlags = [];

  /* doConfigure should be removed if not needed */
  phaseNames = ["doConfigure" "doMakeInstall"];
      
  name = "${abort "Specify name"}-" + version;
  meta = {
    description = "${abort "Specify description"}";
    maintainers = [
      a.lib.maintainers.(abort "Specify maintainer")
    ];
  };
}