mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
8 lines
239 B
Nix
8 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";
|
|
};
|
|
}
|