mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-05 20:43:28 +00:00
9 lines
239 B
Nix
9 lines
239 B
Nix
|
{ stdenv, fetchurl }:
|
||
|
stdenv.mkDerivation {
|
||
|
name = "libestr-0.1.4";
|
||
|
src = fetchurl {
|
||
|
url = http://libestr.adiscon.com/files/download/libestr-0.1.4.tar.gz;
|
||
|
sha256 = "1qw5vqryawdm434l9ql3r160ap2f5mmp7b6pciac7qli62y0a2z3";
|
||
|
};
|
||
|
}
|