nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, fetchurl, acl, attr, zlib }:
2
3stdenv.mkDerivation rec {
4 name = "libisofs-${version}";
5 version = "1.5.0";
6
7 src = fetchurl {
8 url = "http://files.libburnia-project.org/releases/${name}.tar.gz";
9 sha256 = "001l3akf3wb6msl9man776w560iqyvsbwwzs7d7y7msx13irspys";
10 };
11
12 buildInputs = [ attr zlib ];
13 propagatedBuildInputs = [ acl ];
14
15 meta = with stdenv.lib; {
16 homepage = http://libburnia-project.org/;
17 description = "A library to create an ISO-9660 filesystem with extensions like RockRidge or Joliet";
18 license = licenses.gpl2Plus;
19 maintainers = with maintainers; [ abbradar vrthra ];
20 platforms = with platforms; linux;
21 };
22}