biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / skaware-packages / build-skaware-package.nix
blobabad54414566759306d3ed3a0dfc9cdd8af00332
1 { lib, stdenv, cleanPackaging, fetchurl }:
3   # : string
4   pname
5   # : string
6 , version
7   # : string
8 , sha256 ? lib.fakeSha256
9   # : drv | null
10 , manpages ? null
11   # : string
12 , description
13   # : list Platform
14 , platforms ? lib.platforms.all
15   # : list string
16 , outputs ? [ "bin" "lib" "dev" "doc" "out" ]
17   # TODO(Profpatsch): automatically infer most of these
18   # : list string
19 , configureFlags
20   # : string
21 , postConfigure ? null
22   # mostly for moving and deleting files from the build directory
23   # : lines
24 , postInstall
25   # : list Maintainer
26 , maintainers ? [ ]
27   # : passthru arguments (e.g. tests)
28 , passthru ? { }
29   # : attributes to be merged into meta
30 , broken ? false
33 let
35   # File globs that can always be deleted
36   commonNoiseFiles = [
37     ".gitignore"
38     "Makefile"
39     "INSTALL"
40     "configure"
41     "patch-for-solaris"
42     "src/**/*"
43     "tools/**/*"
44     "package/**/*"
45     "config.mak"
46   ];
48   # File globs that should be moved to $doc
49   commonMetaFiles = [
50     "COPYING"
51     "AUTHORS"
52     "NEWS"
53     "CHANGELOG"
54     "README"
55     "README.*"
56     "DCO"
57     "CONTRIBUTING"
58   ];
61 stdenv.mkDerivation {
62   inherit pname version;
64   src = fetchurl {
65     url = "https://skarnet.org/software/${pname}/${pname}-${version}.tar.gz";
66     inherit sha256;
67   };
69   outputs =
70     if manpages == null
71     then outputs
72     else
73     assert (lib.assertMsg (!lib.elem "man" outputs) "If you pass `manpages` to `skawarePackages.buildPackage`, you cannot have a `man` output already!");
74     # insert as early as posible, but keep the first element
75     if lib.length outputs > 0
76     then [(lib.head outputs) "man"] ++ lib.tail outputs
77     else ["man"];
79   dontDisableStatic = true;
80   enableParallelBuilding = true;
82   configureFlags = configureFlags ++ [
83     "--enable-absolute-paths"
84     # We assume every nix-based cross target has urandom.
85     # This might not hold for e.g. BSD.
86     "--with-sysdep-devurandom=yes"
87     (if stdenv.hostPlatform.isDarwin
88     then "--disable-shared"
89     else "--enable-shared")
90   ]
91     # On darwin, the target triplet from -dumpmachine includes version number,
92     # but skarnet.org software uses the triplet to test binary compatibility.
93     # Explicitly setting target ensures code can be compiled against a skalibs
94     # binary built on a different version of darwin.
95     # http://www.skarnet.org/cgi-bin/archive.cgi?1:mss:623:heiodchokfjdkonfhdph
96     ++ (lib.optional stdenv.hostPlatform.isDarwin
97     "--build=${stdenv.hostPlatform.system}");
99   inherit postConfigure;
101   makeFlags = lib.optionals stdenv.cc.isClang [ "AR=${stdenv.cc.targetPrefix}ar" "RANLIB=${stdenv.cc.targetPrefix}ranlib" ];
103   # TODO(Profpatsch): ensure that there is always a $doc output!
104   postInstall = ''
105     echo "Cleaning & moving common files"
106     ${cleanPackaging.commonFileActions {
107        noiseFiles = commonNoiseFiles;
108        docFiles = commonMetaFiles;
109      }} $doc/share/doc/${pname}
111     ${if manpages == null
112       then ''echo "no manpages for this package"''
113       else ''
114         echo "copying manpages"
115         cp -vr ${manpages} $man
116       ''}
118     ${postInstall}
119   '';
121   postFixup = ''
122     ${cleanPackaging.checkForRemainingFiles}
123   '';
125   passthru = passthru // (if manpages == null then {} else { inherit manpages; });
127   meta = {
128     homepage = "https://skarnet.org/software/${pname}/";
129     inherit broken description platforms;
130     license = lib.licenses.isc;
131     maintainers = with lib.maintainers;
132       [ pmahoney Profpatsch qyliss ] ++ maintainers;
133   };