forked from dan/liminix
* [] is now [ ] * {} is now { } * commas in arglists go at end of line not beginning In short, I ran the whole thing through nixfmt-rfc-style but only accepted about 30% of its changes. I might grow accustomed to more of it over time
11 lines
296 B
Nix
11 lines
296 B
Nix
{ stdenv, fetchurl }:
|
|
stdenv.mkDerivation {
|
|
pname = "lzma";
|
|
version = "4.32.7";
|
|
configureFlags = [ "--enable-static" "--disable-shared"];
|
|
src = fetchurl {
|
|
url = "https://tukaani.org/lzma/lzma-4.32.7.tar.gz";
|
|
sha256 = "0b03bdvm388kwlcz97aflpr3ir1zpa3m0bq3s6cd3pp5a667lcwz";
|
|
};
|
|
}
|