mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #4212 from k0ral/mtd-utils
Upgraded mtd-utils to v1.5.1
This commit is contained in:
commit
6960a0bcc2
1 changed files with 3 additions and 5 deletions
|
@ -1,15 +1,13 @@
|
|||
{stdenv, fetchgit, libuuid, lzo, zlib, acl}:
|
||||
|
||||
let
|
||||
version = "1.5.0";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mtd-utils-${version}";
|
||||
version = "1.5.1";
|
||||
|
||||
src = fetchgit {
|
||||
url = git://git.infradead.org/mtd-utils.git;
|
||||
rev = "refs/tags/v" + version;
|
||||
sha256 = "cc645c0ec28083431b11f3b38f9f7759378d89e11047a883529f703e1b6c1cce";
|
||||
sha256 = "1bjx42pwl789ara63c672chvgvmqhkj4y132gajqih6naq71f8g7";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
|
|
Loading…
Reference in a new issue