mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
9 lines
239 B
Nix
9 lines
239 B
Nix
{ stdenv, fetchurl }:
|
|
stdenv.mkDerivation {
|
|
name = "libestr-0.1.9";
|
|
src = fetchurl {
|
|
url = http://libestr.adiscon.com/files/download/libestr-0.1.9.tar.gz;
|
|
sha256 = "06km9mlw5qq4aa7503l81d0qcghzl0n3lh0z41r1xjpa04nnwb42";
|
|
};
|
|
}
|