bandwhich: 0.23.0 -> 0.23.1; move to by-name; nixfmt; useFetchCargoVendor (#356934)
[NixPkgs.git] / pkgs / development / compilers / c0 / default.nix
blob4f82e9cf2ed2e8d7b30ebd351620d1692c2ee867
2   lib,
3   stdenv,
4   fetchFromBitbucket,
5   mlton,
6   pkg-config,
7   getopt,
8   boehmgc,
9   darwin,
10   libbacktrace,
11   libpng,
12   ncurses,
13   readline,
14   unstableGitUpdater,
17 stdenv.mkDerivation rec {
18   pname = "c0";
19   version = "0-unstable-2023-09-05";
21   src = fetchFromBitbucket {
22     owner = "c0-lang";
23     repo = "c0";
24     rev = "608f97eef5d81bb85963d66f955730dd93996f67";
25     hash = "sha256-lRIEtclx+NKxAO72nsvnxVeEGCEe6glC6w8MXh1HEwY=";
26   };
28   patches = [
29     ./use-system-libraries.patch
30   ];
32   postPatch =
33     ''
34       substituteInPlace cc0/Makefile \
35         --replace '$(shell ./get_version.sh)' '${version}'
36       substituteInPlace cc0/compiler/bin/buildid \
37         --replace '`../get_version.sh`' '${version}' \
38         --replace '`date`' '1970-01-01T00:00:00Z' \
39         --replace '`hostname`' 'nixpkgs'
40     ''
41     + lib.optionalString stdenv.hostPlatform.isDarwin ''
42       for f in cc0/compiler/bin/coin-o0-support cc0/compiler/bin/cc0-o0-support; do
43         substituteInPlace $f --replace '$(brew --prefix gnu-getopt)' '${getopt}'
44       done
45     '';
47   preConfigure = ''
48     cd cc0/
49   '';
51   nativeBuildInputs = [
52     getopt
53     mlton
54     pkg-config
55   ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.sigtool ];
57   buildInputs = [
58     boehmgc
59     libbacktrace
60     libpng
61     ncurses
62     readline
63   ];
65   strictDeps = true;
67   installFlags = [ "PREFIX=$(out)" ];
69   postInstall = ''
70     mkdir -p $out/share/emacs/site-lisp
71     mv $out/c0-mode/ $out/share/emacs/site-lisp/
72   '';
74   passthru.updateScript = unstableGitUpdater {
75     url = "https://bitbucket.org/c0-lang/c0.git";
76   };
78   meta = with lib; {
79     description = "Small safe subset of the C programming language, augmented with contracts";
80     homepage = "https://c0.cs.cmu.edu/";
81     license = licenses.mit;
82     maintainers = [ ];
83     platforms = platforms.unix;
84     # line 1: ../../bin/wrappergen: cannot execute: required file not found
85     # make[2]: *** [../../lib.mk:83:
86     broken = stdenv.hostPlatform.isLinux;
87   };