2018-11-05 10:21:46 +00:00
|
|
|
{ stdenv, fetchzip, buildDunePackage, configurator, cstruct }:
|
2015-03-02 10:05:13 +00:00
|
|
|
|
2018-11-05 10:21:46 +00:00
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "io-page";
|
|
|
|
version = "2.0.1";
|
2015-03-02 10:05:13 +00:00
|
|
|
|
|
|
|
src = fetchzip {
|
2018-11-05 10:21:46 +00:00
|
|
|
url = "https://github.com/mirage/${pname}/archive/${version}.tar.gz";
|
2018-08-21 23:07:35 +01:00
|
|
|
sha256 = "1rw04dwrlx5hah5dkjf7d63iff82j9cifr8ifjis5pdwhgwcff8i";
|
2015-03-02 10:05:13 +00:00
|
|
|
};
|
|
|
|
|
2018-11-05 10:21:46 +00:00
|
|
|
buildInputs = [ configurator ];
|
2015-03-02 10:05:13 +00:00
|
|
|
propagatedBuildInputs = [ cstruct ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = https://github.com/mirage/io-page;
|
2018-08-21 23:07:35 +01:00
|
|
|
license = stdenv.lib.licenses.isc;
|
2015-03-02 10:05:13 +00:00
|
|
|
description = "IO memory page library for Mirage backends";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ vbgl ];
|
|
|
|
};
|
|
|
|
}
|