mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
mps: version 1.113.0
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
c7fd20ca5b
commit
33e4adc325
2 changed files with 26 additions and 0 deletions
24
pkgs/development/libraries/mps/default.nix
Normal file
24
pkgs/development/libraries/mps/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, fetchurl, autoreconfHook, sqlite }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mps-${version}";
|
||||
version = "1.113.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.ravenbrook.com/project/mps/release/${version}/mps-kit-${version}.tar.gz";
|
||||
sha256 = "0v4difh3yl2mvpvnwlavhaags945l1452g07fllhdbpzgbjay79i";
|
||||
};
|
||||
|
||||
buildInputs = [ autoreconfHook sqlite ];
|
||||
|
||||
# Fix a slightly annoying build failure in 'make install'
|
||||
patchPhase = "substituteInPlace ./Makefile.in --replace /hot/Release /hot";
|
||||
|
||||
meta = {
|
||||
description = "A flexible memory management and garbage collection library";
|
||||
homepage = "http://www.ravenbrook.com/project/mps";
|
||||
license = stdenv.lib.licenses.sleepycat;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
||||
};
|
||||
}
|
|
@ -5304,6 +5304,8 @@ let
|
|||
|
||||
mlt = callPackage ../development/libraries/mlt { };
|
||||
|
||||
mps = callPackage ../development/libraries/mps { };
|
||||
|
||||
libmpeg2 = callPackage ../development/libraries/libmpeg2 { };
|
||||
|
||||
mpeg2dec = libmpeg2;
|
||||
|
|
Loading…
Reference in a new issue